How to bulk edit Webflow CMS items (without breaking your site)
Webflow's CMS is great at many things. Bulk editing isn't one of them. From the CMS panel you can select multiple items and publish, unpublish, draft, archive or delete them, but you cannot change a field value across many items at once. If you need to update a price, a tag or a status on 300 items, the UI wants you to open 300 popups.
There are four real ways around that. Here's what each one is good for, and where each one bites.
Method 1: CSV export and re-import
Export the collection, edit in a spreadsheet, re-import with "update existing items" mapped by Item ID. Free and built in. The risks: mapping errors, Excel silently mangling dates and numbers, duplicate items when matching fails, and no preview or undo. Reasonable for small one-off changes if you're careful. Always keep the exported CSV as your manual backup.
Method 2: A CSV-based tool like Ikaros
Ikaros connects through Webflow OAuth and syncs a CSV to your collection, including creating and deleting items. More capable than the native import, but it's still a CSV workflow: you edit blind in a spreadsheet, and options like "delete missing" can remove items you meant to keep.
Method 3: Automation platforms or the API
Make (or your own scripts against the Webflow Data API) can update up to 100 items per request and is the right choice for recurring, automated syncs, like prices flowing in from an external system. It requires technical setup, respect for Webflow's rate limits, and error handling. Overkill for hands-on editing.
Method 4: A spreadsheet editor like Bulkman
Tools in this category show your real CMS items as rows and let you edit them directly: fill handle to copy values down, find & replace per column, math actions on numbers. No CSV in the loop, so no export/import risks. Bulkman adds a safety layer the other methods lack: every change is staged locally, shown in a diff before writing, automatically snapshotted, reversible with one click, and published per item, never site-wide.
How to choose
One-off tiny fix, CSV import is fine. Recurring automated sync, use Make or the API. Hands-on editing of real content, especially on a live site, use a spreadsheet editor with rollback.